Add-PSSnapin Microsoft.SharePoint.Powershell -EA 0 

$databases = ("Content_Upgrade_AU","Content_Upgrade_NZ","Content_Upgrade_CA","Content_Upgrade_US","Content_Upgrade_Projects")

foreach ($db in $databases)
  {
    Get-SPSite -ContentDatabase $db -Limit All | Upgrade-SPSite -VersionUpgrade -QueueOnly # Umieszcza aktualizację w kolejce
#   Get-SPSite -ContentDatabase $db -Limit All | Upgrade-SPSite -VersionUpgrade -Unthrottled # Przeprowadza aktualizację!
  }

# Weryfikacja poziomów zgodności
    Get-SPSite -Limit All


